# Autoriser l'exécution des scripts PHP dans ce répertoire
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>

# Autoriser l'accès aux fichiers PHP
<FilesMatch "\.php$">
    Order Allow,Deny
    Allow from all
</FilesMatch>

# Protection contre l'accès direct aux fichiers de log
<FilesMatch "\.log$">
    Order Deny,Allow
    Deny from all
</FilesMatch>